home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iis_nat.nasl < prev    next >
Text File  |  2005-03-31  |  3KB  |  88 lines

  1. #
  2. # This script was written by Georges Dagousset <georges.dagousset@alert4web.com>
  3. # Modified by Paul Johnston for Westpoint Ltd <paul@westpoint.ltd.uk>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10759);
  11.  script_bugtraq_id(1499);
  12.  script_cve_id("CAN-2000-0649");
  13.  script_version ("$Revision: 1.14 $");
  14.  name["english"] = "Private IP address leaked in HTTP headers";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. This web server leaks a private IP address through its HTTP headers.
  19.  
  20. This may expose internal IP addresses that are usually hidden or masked
  21. behind a Network Address Translation (NAT) Firewall or proxy server.
  22.  
  23. There is a known issue with IIS 4.0 doing this in its default configuration.
  24.   See http://support.microsoft.com/support/kb/articles/Q218/1/80.ASP
  25.  
  26. See the Bugtraq reference for a full discussion.
  27.  
  28. Risk factor : Low";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for private IP addresses in HTTP headers";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_GATHER_INFO);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2001 Alert4Web.com, 2003 Westpoint Ltd");
  40.  family["english"] = "General";
  41.  script_family(english:family["english"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50. include("http_func.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. sig = get_kb_item("www/hmap/" + port + "/description");
  55. if ( sig && "IIS" >!< sig ) exit(0);
  56.  
  57. #
  58. # Craft our own HTTP/1.0 request for the server banner.
  59. # Note: HTTP/1.1 is rarely useful for detecting this flaw.
  60. #
  61. soc = http_open_socket(port);
  62. if(!soc) exit(0);
  63. send(socket:soc, data:string("GET / HTTP/1.0\r\n\r\n"));
  64. banner = http_recv_headers(soc);
  65. http_close_socket(soc);
  66.  
  67. #
  68. # Check for private IP addresses in the banner
  69. # Ranges are: 10.x.x.x, 172.16-31.x.x, 192.168.x.x
  70. #
  71. private_ip = eregmatch(pattern:"([^12]10\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}|172\.(1[6-9]|2[0-9]|3[0-1])\.[0-9]{1,3}\.[0-9]{1,3}|192\.168\.[0-9]{1,3}\.[0-9]{1,3})", string:banner);
  72. if(!isnull(private_ip))
  73. {
  74.   report = "
  75. This web server leaks a private IP address through its HTTP headers : " + private_ip[0] + "
  76.  
  77. This may expose internal IP addresses that are usually hidden or masked
  78. behind a Network Address Translation (NAT) Firewall or proxy server.
  79.  
  80. There is a known issue with IIS 4.0 doing this in its default configuration.
  81.   See http://support.microsoft.com/support/kb/articles/Q218/1/80.ASP
  82.  
  83. See the Bugtraq reference for a full discussion.
  84.  
  85. Risk factor : Low";
  86.   security_warning(port:port, data:report);
  87. }
  88.